-
Notifications
You must be signed in to change notification settings - Fork 7.9k
Fixes GH-16475: zend_hash_str_find_ptr_lc && zend_hash_find_ptr_lc C++ friendly #16476
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fixes GH-16475: zend_hash_str_find_ptr_lc && zend_hash_find_ptr_lc C++ friendly #16476
Conversation
Could you please advise of how best to add this to PHP 8.4, so that it would end up in PHP 8.4 GA if possible. Thanks. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is fine for master.
I also don't see a big problem for PHP-8.4, but I'm not sure about the older branches.
Thank you @dstogov ! |
No, this is not necessary. If you don't care about PHP-8.2 and PHP-8.3 you may re-target this PR to PHP-8.4 (this should be possible through github) and I'll approve it. Otherwise let wait for other opinions. |
Thank you @dstogov ! |
* PHP-8.4: Making zend_hash_str_find_ptr_lc && zend_hash_find_ptr_lc C++ friendly (#16476)
Added the
extern "C" modifier
to makezend_hash_str_find_ptr_lc
&&zend_hash_find_ptr_lc
C++ friendly.